superscalar architecture - определение. Что такое superscalar architecture
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое superscalar architecture - определение

CPU THAT IMPLEMENTS INSTRUCTION-LEVEL PARALLELISM WITHIN A SINGLE PROCESSOR
Superscalar architecture; Superscaler; Super-scalar architecture; Superscalar; Superscalar execution
  • CRAY T3e]] supercomputer with four ''superscalar'' [[Alpha 21164]] processors
  • Simple superscalar pipeline. By fetching and dispatching two instructions at a time, a maximum of two instructions per cycle can be completed. (IF = instruction fetch, ID = instruction decode, EX = execute, MEM = memory access, WB = register write-back, ''i'' = instruction number, ''t'' = clock cycle [i.e. time])

superscalar         
<architecture> A superscalar architecture is a uniprocessor that can execute two or more scalar operations in parallel. Some definitions include superpipelined and VLIW architectures; others do not. Superscalar architectures (apart from superpipelined architectures) require multiple functional units, which may or may not be identical to each other. In some superscalar processors the order of instruction execution is determined statically (purely at compile-time), in others it is determined dynamically (partly at run time).
Mughal architecture         
  • Prince Azam Shah]]
  • [[Badshahi Mosque]], in [[Lahore]], [[Pakistan]], was the largest mosque in the world for 313 years, and is the last of the imperial mosques built by the Mughals
  • [[Bibi Ka Maqbara]] is a tomb in [[Aurangabad, Maharashtra]], which was built by [[Aurangzeb]] in the memory of his wife, [[Dilras Banu Begum]]
  • The central chamber of the [[Shahi Hammam]] is decorated with frescoes
  • [[Wazir Khan Mosque]] in [[Lahore]], [[Pakistan]], is considered to be the most ornately decorated Mughal-era mosque
  • Hindu influences]] on Mughal Architecture during the reign of [[Akbar]]
  • The [[Shalimar Gardens, Lahore]] are among the most famous Mughal gardens.
  • The tomb of [[Shaikh Salim Chisti]] is considered to be one of the finest examples of Mughal architecture
  • Humayun's Tomb, Delhi, India
  • The tomb of I'timād-ud-Daulah is often regarded as a draft of the [[Tāj Mahal]].
  • The [[Tomb of Jahangir]] at [[Lahore]] does not have a [[dome]] as [[Jahangir]] forbade construction of a dome over his tomb.
  • The Alamgiri Gate at [[Lahore Fort]], [[Lahore]], Pakistan, was named for Aurangzeb, who was sometimes referred to as "Alamgir".
  • [[Gardens of Babur]] in [[Kabul]], Afghanistan.
  • The mosque's tile work exhibits Timurid influences introduced during Shah Jahan's campaigns in Central Asia.
INDO-ISLAMIC ARCHITECTURE FROM 16TH TO 18TH CENTURY INDIA
Mughal Architecture; Moghul architecture; Akbar period architecture; Mughul Architecture
Mughal architecture is the type of Indo-Islamic architecture developed by the Mughals in the 16th, 17th and 18th centuries throughout the ever-changing extent of their empire in the Indian subcontinent. It developed from the architectural styles of earlier Muslim dynasties in India and from Iranian and Central Asian architectural traditions, particularly Timurid architecture.
Iranian architecture         
  • The ancient [[Palace of Ardashir]], constructed in 224 during the [[Sassanid Dynasty]]. The building has three large domes, among the oldest examples of such large-scale domes in the world.
  • The Eram Garden]] in [[Shiraz]] is an 18th-century building and a legacy of the [[Zand Dynasty]].
  • World Heritage Site]] of [[Chogha Zanbil]], which relieved the flat monotony of the southern [[Khuzestan]] plane, were but "ritual imitations of the familiar sacred mountains which ring the [[Iranian plateau]]".<ref>[[Arthur Upham Pope]], ''Persian Architecture'', 1965, New York, p.16</ref>
  • Click [https://web.archive.org/web/20190226141817/http://www.etereaestudios.com/docs_html/isfahan_htm/isfahan_index.htm '''here'''] for animation of Iranian architecture.
  • Kharāghān twin towers, 1067 and 1093]]
  • A hujra (room) at Atabaki sahn at [[Fatima Masumeh Shrine]], [[Qom]].
  • The ruins of Persepolis, built 2500 years ago during the reign of the [[Achaemenid Empire]].
  • Persian-style column as seen in Persepolis.
  • Seljuq]] sultan [[Ahmad Sanjar]] in [[Merv]], [[Turkmenistan]]. The medieval structure with a typical Persian dome is a fine example of the Seljuq-period Persian architecture.
STYLE OF ARCHITECTURE
Persian architecture; Iranian Architecture; Persian Architecture; Persian (Iranian) architecture; Architecture of Iran; Architecture in Iran; Azeri style; Razi style; Razi style (Iranian architecture); Azari style (Iranian architecture); Azerbaijani style; Azari style; Architecture of Persia; Sabkshenasi-e Memari-e Irani
Iranian architecture or Persian architecture (Persian: معمارى ایرانی, Memāri e Irāni) is the architecture of Iran and parts of the rest of West Asia, the Caucasus and Central Asia. Its history dates back to at least 5,000 BC with characteristic examples distributed over a vast area from Turkey and Iraq to Uzbekistan and Tajikistan, and from the Caucasus to Zanzibar.

Википедия

Superscalar processor

A superscalar processor is a CPU that implements a form of parallelism called instruction-level parallelism within a single processor. In contrast to a scalar processor, which can execute at most one single instruction per clock cycle, a superscalar processor can execute more than one instruction during a clock cycle by simultaneously dispatching multiple instructions to different execution units on the processor. It therefore allows more throughput (the number of instructions that can be executed in a unit of time) than would otherwise be possible at a given clock rate. Each execution unit is not a separate processor (or a core if the processor is a multi-core processor), but an execution resource within a single CPU such as an arithmetic logic unit.

In Flynn's taxonomy, a single-core superscalar processor is classified as an SISD processor (single instruction stream, single data stream), though a single-core superscalar processor that supports short vector operations could be classified as SIMD (single instruction stream, multiple data streams). A multi-core superscalar processor is classified as an MIMD processor (multiple instruction streams, multiple data streams).

While a superscalar CPU is typically also pipelined, superscalar and pipelining execution are considered different performance enhancement techniques. The former executes multiple instructions in parallel by using multiple execution units, whereas the latter executes multiple instructions in the same execution unit in parallel by dividing the execution unit into different phases.

The superscalar technique is traditionally associated with several identifying characteristics (within a given CPU):

  • Instructions are issued from a sequential instruction stream
  • The CPU dynamically checks for data dependencies between instructions at run time (versus software checking at compile time)
  • The CPU can execute multiple instructions per clock cycle